home *** CD-ROM | disk | FTP | other *** search
-
- /* regexmodule.c */
- static void reg_dealloc ( regexobject *re );
- static PyObject *makeresult ( struct re_registers *regs );
- static PyObject *reg_match ( regexobject *re , PyObject *args );
- static PyObject *reg_search ( regexobject *re , PyObject *args );
- static PyObject *reg_group ( regexobject *re , PyObject *args );
- static PyObject *reg_getattr ( regexobject *re , char *name );
- static PyObject *newregexobject ( PyObject *pattern , PyObject *translate , PyObject *givenpat , PyObject *groupindex );
- static PyObject *regex_compile ( PyObject *self , PyObject *args );
- static PyObject *symcomp ( PyObject *pattern , PyObject *gdict );
- static PyObject *regex_symcomp ( PyObject *self , PyObject *args );
- static int update_cache ( PyObject *pat );
- static PyObject *regex_match ( PyObject *self , PyObject *args );
- static PyObject *regex_search ( PyObject *self , PyObject *args );
- static PyObject *regex_set_syntax ( PyObject *self , PyObject *args );
-